It was reported by Owen Taylor <otaylor@redhat.com>, that LC_ALL produce
authorTimur Bakeyev <mc@bat.ru>
Thu, 21 Jan 1999 13:26:35 +0000 (13:26 +0000)
committerTimur I. Bakeyev <timur@src.gnome.org>
Thu, 21 Jan 1999 13:26:35 +0000 (13:26 +0000)
Thu Jan 21 16:04:35 1999  Timur Bakeyev <mc@bat.ru>

* gtk/gtkrc.c (gtk_rc_init): It was reported by Owen Taylor
<otaylor@redhat.com>, that LC_ALL produce unparsable garbage
on some glibc'ed systems and HP/UX. So, falling to LC_CTYPE.

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtkrc.c

index 4a3ed3a0a89e3fc92150762eceef9e1967b26f41..9026118ce31c6f313f8513fccf251defce986a9b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Thu Jan 21 16:04:35 1999  Timur Bakeyev <mc@bat.ru>
+
+       * gtk/gtkrc.c (gtk_rc_init): It was reported by Owen Taylor 
+       <otaylor@redhat.com>, that LC_ALL produce unparsable garbage
+       on some glibc'ed systems and HP/UX. So, falling to LC_CTYPE.
+
 Thu Jan 21 02:11:44 1999  Owen Taylor  <otaylor@redhat.com>
 
        * Set and read the XdndActionList property defined
index 4a3ed3a0a89e3fc92150762eceef9e1967b26f41..9026118ce31c6f313f8513fccf251defce986a9b 100644 (file)
@@ -1,3 +1,9 @@
+Thu Jan 21 16:04:35 1999  Timur Bakeyev <mc@bat.ru>
+
+       * gtk/gtkrc.c (gtk_rc_init): It was reported by Owen Taylor 
+       <otaylor@redhat.com>, that LC_ALL produce unparsable garbage
+       on some glibc'ed systems and HP/UX. So, falling to LC_CTYPE.
+
 Thu Jan 21 02:11:44 1999  Owen Taylor  <otaylor@redhat.com>
 
        * Set and read the XdndActionList property defined
index 4a3ed3a0a89e3fc92150762eceef9e1967b26f41..9026118ce31c6f313f8513fccf251defce986a9b 100644 (file)
@@ -1,3 +1,9 @@
+Thu Jan 21 16:04:35 1999  Timur Bakeyev <mc@bat.ru>
+
+       * gtk/gtkrc.c (gtk_rc_init): It was reported by Owen Taylor 
+       <otaylor@redhat.com>, that LC_ALL produce unparsable garbage
+       on some glibc'ed systems and HP/UX. So, falling to LC_CTYPE.
+
 Thu Jan 21 02:11:44 1999  Owen Taylor  <otaylor@redhat.com>
 
        * Set and read the XdndActionList property defined
index 4a3ed3a0a89e3fc92150762eceef9e1967b26f41..9026118ce31c6f313f8513fccf251defce986a9b 100644 (file)
@@ -1,3 +1,9 @@
+Thu Jan 21 16:04:35 1999  Timur Bakeyev <mc@bat.ru>
+
+       * gtk/gtkrc.c (gtk_rc_init): It was reported by Owen Taylor 
+       <otaylor@redhat.com>, that LC_ALL produce unparsable garbage
+       on some glibc'ed systems and HP/UX. So, falling to LC_CTYPE.
+
 Thu Jan 21 02:11:44 1999  Owen Taylor  <otaylor@redhat.com>
 
        * Set and read the XdndActionList property defined
index 4a3ed3a0a89e3fc92150762eceef9e1967b26f41..9026118ce31c6f313f8513fccf251defce986a9b 100644 (file)
@@ -1,3 +1,9 @@
+Thu Jan 21 16:04:35 1999  Timur Bakeyev <mc@bat.ru>
+
+       * gtk/gtkrc.c (gtk_rc_init): It was reported by Owen Taylor 
+       <otaylor@redhat.com>, that LC_ALL produce unparsable garbage
+       on some glibc'ed systems and HP/UX. So, falling to LC_CTYPE.
+
 Thu Jan 21 02:11:44 1999  Owen Taylor  <otaylor@redhat.com>
 
        * Set and read the XdndActionList property defined
index 4a3ed3a0a89e3fc92150762eceef9e1967b26f41..9026118ce31c6f313f8513fccf251defce986a9b 100644 (file)
@@ -1,3 +1,9 @@
+Thu Jan 21 16:04:35 1999  Timur Bakeyev <mc@bat.ru>
+
+       * gtk/gtkrc.c (gtk_rc_init): It was reported by Owen Taylor 
+       <otaylor@redhat.com>, that LC_ALL produce unparsable garbage
+       on some glibc'ed systems and HP/UX. So, falling to LC_CTYPE.
+
 Thu Jan 21 02:11:44 1999  Owen Taylor  <otaylor@redhat.com>
 
        * Set and read the XdndActionList property defined
index 4a3ed3a0a89e3fc92150762eceef9e1967b26f41..9026118ce31c6f313f8513fccf251defce986a9b 100644 (file)
@@ -1,3 +1,9 @@
+Thu Jan 21 16:04:35 1999  Timur Bakeyev <mc@bat.ru>
+
+       * gtk/gtkrc.c (gtk_rc_init): It was reported by Owen Taylor 
+       <otaylor@redhat.com>, that LC_ALL produce unparsable garbage
+       on some glibc'ed systems and HP/UX. So, falling to LC_CTYPE.
+
 Thu Jan 21 02:11:44 1999  Owen Taylor  <otaylor@redhat.com>
 
        * Set and read the XdndActionList property defined
index 965b04c8e30580d962f7ae21dc2251b0e86b8ca3..7afe2eb3fb79352a324c9e97b8816cd43c4183c0 100644 (file)
@@ -383,7 +383,7 @@ gtk_rc_init (void)
 #ifdef HAVE_LC_MESSAGES
   char *locale = setlocale (LC_MESSAGES, NULL);
 #else
-  char *locale = setlocale (LC_ALL, NULL);
+  char *locale = setlocale (LC_CTYPE, NULL);
 #endif
   guint length;
   char *p;